home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / edsspell / project1.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  158 b   |  13 lines

  1. program Project1;
  2.  
  3. uses
  4.     Forms,
  5.     Unit1 in 'UNIT1.PAS' {Demo1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.     Application.CreateForm(TDemo1, Demo1);
  11.   application.Run;
  12. end.
  13.